c76d7bdcfe86ed1d1b1ab74cd6af9205bde25fad,plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommandsLibrary.java,NodeJsDebugCommandsLibrary,stepOut,#,166
Before Change
* Execute {@code step out} command.
*/
public Location stepOut() throws NodeJsDebuggerException {
NodeJsDebugCommand<Location> nextCommand = createCommand("out", NodeJsStepParser.INSTANCE);
return doExecute(nextCommand);
}
/**
After Change
* Execute {@code step out} command.
*/
public Void stepOut() throws NodeJsDebuggerException {
doExecute(createCommand("out", NodeJsOutputParser.VOID));
return null;
}